home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 1998 November / IRIX 6.5.2 Base Documentation November 1998.img / usr / share / catman / p_man / cat3 / perl5 / overload.z / overload
Text File  |  1998-10-30  |  24KB  |  661 lines

  1.  
  2.  
  3.  
  4. oooovvvveeeerrrrllllooooaaaadddd((((3333))))                                                        oooovvvveeeerrrrllllooooaaaadddd((((3333))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      overload - Package for overloading perl operations
  10.  
  11. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  12.          package SomeThing;
  13.  
  14.          use overload
  15.              '+' => \&myadd,
  16.              '-' => \&mysub;
  17.              # etc
  18.          ...
  19.  
  20.          package main;
  21.          $a = new SomeThing 57;
  22.          $b=5+$a;
  23.          ...
  24.          if (overload::Overloaded $b) {...}
  25.          ...
  26.          $strval = overload::StrVal $b;
  27.  
  28.  
  29. CCCCAAAAVVVVEEEEAAAATTTT SSSSCCCCRRRRIIIIPPPPTTTTOOOORRRR
  30.      Overloading of operators is a subject not to be taken lightly.  Neither
  31.      its precise implementation, syntax, nor semantics are 100% endorsed by
  32.      Larry Wall.  So any of these may be changed at some point in the future.
  33.  
  34. DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
  35.      DDDDeeeeccccllllaaaarrrraaaattttiiiioooonnnn ooooffff oooovvvveeeerrrrllllooooaaaaddddeeeedddd ffffuuuunnnnccccttttiiiioooonnnnssss
  36.  
  37.      The compilation directive
  38.  
  39.          package Number;
  40.          use overload
  41.              "+" => \&add,
  42.              "*=" => "muas";
  43.  
  44.      declares function _N_u_m_b_e_r::_a_d_d() for addition, and method _m_u_a_s() in the
  45.      "class" Number (or one of its base classes) for the assignment form *= of
  46.      multiplication.
  47.  
  48.      Arguments of this directive come in (key, value) pairs.  Legal values are
  49.      values legal inside a &{ ... } call, so the name of a subroutine, a
  50.      reference to a subroutine, or an anonymous subroutine will all work.
  51.      Note that values specified as strings are interpreted as methods, not
  52.      subroutines.  Legal keys are listed below.
  53.  
  54.      The subroutine add will be called to execute $a+$b if $a is a reference
  55.      to an object blessed into the package Number, or if $a is not an object
  56.      from a package with defined mathemagic addition, but $b is a reference to
  57.      a Number.  It can also be called in other situations, like $a+=7, or
  58.      $a++.  See the section on _M_A_G_I_C _A_U_T_O_G_E_N_E_R_A_T_I_O_N.  (Mathemagical methods
  59.      refer to methods triggered by an overloaded mathematical operator.)
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. oooovvvveeeerrrrllllooooaaaadddd((((3333))))                                                        oooovvvveeeerrrrllllooooaaaadddd((((3333))))
  71.  
  72.  
  73.  
  74.      Since overloading respects inheritance via the @ISA hierarchy, the above
  75.      declaration would also trigger overloading of + and *= in all the
  76.      packages which inherit from Number.
  77.  
  78.      CCCCaaaalllllllliiiinnnngggg CCCCoooonnnnvvvveeeennnnttttiiiioooonnnnssss ffffoooorrrr BBBBiiiinnnnaaaarrrryyyy OOOOppppeeeerrrraaaattttiiiioooonnnnssss
  79.  
  80.      The functions specified in the use overload ... directive are called with
  81.      three (in one particular case with four, see the section on _L_a_s_t _R_e_s_o_r_t)
  82.      arguments.  If the corresponding operation is binary, then the first two
  83.      arguments are the two arguments of the operation.  However, due to
  84.      general object calling conventions, the first argument should always be
  85.      an object in the package, so in the situation of 7+$a, the order of the
  86.      arguments is interchanged.  It probably does not matter when implementing
  87.      the addition method, but whether the arguments are reversed is vital to
  88.      the subtraction method.  The method can query this information by
  89.      examining the third argument, which can take three different values:
  90.  
  91.      FALSE  the order of arguments is as in the current operation.
  92.  
  93.      TRUE   the arguments are reversed.
  94.  
  95.      undef  the current operation is an assignment variant (as in $a+=7), but
  96.             the usual function is called instead.  This additional information
  97.             can be used to generate some optimizations.
  98.  
  99.      CCCCaaaalllllllliiiinnnngggg CCCCoooonnnnvvvveeeennnnttttiiiioooonnnnssss ffffoooorrrr UUUUnnnnaaaarrrryyyy OOOOppppeeeerrrraaaattttiiiioooonnnnssss
  100.  
  101.      Unary operation are considered binary operations with the second argument
  102.      being undef.  Thus the functions that overloads {"++"} is called with
  103.      arguments ($a,undef,'') when $a++ is executed.
  104.  
  105.      OOOOvvvveeeerrrrllllooooaaaaddddaaaabbbblllleeee OOOOppppeeeerrrraaaattttiiiioooonnnnssss
  106.  
  107.      The following symbols can be specified in use overload:
  108.  
  109.      +o _A_r_i_t_h_m_e_t_i_c _o_p_e_r_a_t_i_o_n_s
  110.  
  111.               "+", "+=", "-", "-=", "*", "*=", "/", "/=", "%", "%=",
  112.               "**", "**=", "<<", "<<=", ">>", ">>=", "x", "x=", ".", ".=",
  113.  
  114.           For these operations a substituted non-assignment variant can be
  115.           called if the assignment variant is not available.  Methods for
  116.           operations "+", "-", "+=", and "-=" can be called to automatically
  117.           generate increment and decrement methods.  The operation "-" can be
  118.           used to autogenerate missing methods for unary minus or abs.
  119.  
  120.      +o _C_o_m_p_a_r_i_s_o_n _o_p_e_r_a_t_i_o_n_s
  121.  
  122.               "<",  "<=", ">",  ">=", "==", "!=", "<=>",
  123.               "lt", "le", "gt", "ge", "eq", "ne", "cmp",
  124.  
  125.           If the corresponding "spaceship" variant is available, it can be
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136. oooovvvveeeerrrrllllooooaaaadddd((((3333))))                                                        oooovvvveeeerrrrllllooooaaaadddd((((3333))))
  137.  
  138.  
  139.  
  140.           used to substitute for the missing operation.  During sorting
  141.           arrays, cmp is used to compare values subject to use overload.
  142.  
  143.      +o _B_i_t _o_p_e_r_a_t_i_o_n_s
  144.  
  145.               "&", "^", "|", "neg", "!", "~",
  146.  
  147.           "neg" stands for unary minus.  If the method for neg is not
  148.           specified, it can be autogenerated using the method for subtraction.
  149.           If the method for "!" is not specified, it can be autogenerated
  150.           using the methods for "bool", or "\"\"", or "0+".
  151.  
  152.      +o _I_n_c_r_e_m_e_n_t _a_n_d _d_e_c_r_e_m_e_n_t
  153.  
  154.               "++", "--",
  155.  
  156.           If undefined, addition and subtraction methods can be used instead.
  157.           These operations are called both in prefix and postfix form.
  158.  
  159.      +o _T_r_a_n_s_c_e_n_d_e_n_t_a_l _f_u_n_c_t_i_o_n_s
  160.  
  161.               "atan2", "cos", "sin", "exp", "abs", "log", "sqrt",
  162.  
  163.           If abs is unavailable, it can be autogenerated using methods for "<"
  164.           or "<=>" combined with either unary minus or subtraction.
  165.  
  166.      +o _B_o_o_l_e_a_n, _s_t_r_i_n_g _a_n_d _n_u_m_e_r_i_c _c_o_n_v_e_r_s_i_o_n
  167.  
  168.               "bool", "\"\"", "0+",
  169.  
  170.           If one or two of these operations are unavailable, the remaining
  171.           ones can be used instead.  bool is used in the flow control
  172.           operators (like while) and for the ternary "?:" operation.  These
  173.           functions can return any arbitrary Perl value.  If the corresponding
  174.           operation for this value is overloaded too, that operation will be
  175.           called again with this value.
  176.  
  177.      +o _S_p_e_c_i_a_l
  178.  
  179.               "nomethod", "fallback", "=",
  180.  
  181.           see the section on _S_P_E_C_I_A_L _S_Y_M_B_O_L_S _F_O_R _u_s_e _o_v_e_r_l_o_a_d.
  182.  
  183.      See the section on _F_a_l_l_b_a_c_k for an explanation of when a missing method
  184.      can be autogenerated.
  185.  
  186.      IIIInnnnhhhheeeerrrriiiittttaaaannnncccceeee aaaannnndddd oooovvvveeeerrrrllllooooaaaaddddiiiinnnngggg
  187.  
  188.      Inheritance interacts with overloading in two ways.
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.                                                                         PPPPaaaaggggeeee 3333
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202. oooovvvveeeerrrrllllooooaaaadddd((((3333))))                                                        oooovvvveeeerrrrllllooooaaaadddd((((3333))))
  203.  
  204.  
  205.  
  206.      Strings as values of use overload directive
  207.           If value in
  208.  
  209.             use overload key => value;
  210.  
  211.           is a string, it is interpreted as a method name.
  212.  
  213.      Overloading of an operation is inherited by derived classes
  214.           Any class derived from an overloaded class is also overloaded.  The
  215.           set of overloaded methods is the union of overloaded methods of all
  216.           the ancestors. If some method is overloaded in several ancestor,
  217.           then which description will be used is decided by the usual
  218.           inheritance rules:
  219.  
  220.           If A inherits from B and C (in this order), B overloads + with
  221.           \&D::plus_sub, and C overloads + by "plus_meth", then the subroutine
  222.           D::plus_sub will be called to implement operation + for an object in
  223.           package A.
  224.  
  225.      Note that since the value of the fallback key is not a subroutine, its
  226.      inheritance is not governed by the above rules.  In the current
  227.      implementation, the value of fallback in the first overloaded ancestor is
  228.      used, but this is accidental and subject to change.
  229.  
  230. SSSSPPPPEEEECCCCIIIIAAAALLLL SSSSYYYYMMMMBBBBOOOOLLLLSSSS FFFFOOOORRRR uuuusssseeee oooovvvveeeerrrrllllooooaaaadddd
  231.      Three keys are recognized by Perl that are not covered by the above
  232.      description.
  233.  
  234.      LLLLaaaasssstttt RRRReeeessssoooorrrrtttt
  235.  
  236.      "nomethod" should be followed by a reference to a function of four
  237.      parameters.  If defined, it is called when the overloading mechanism
  238.      cannot find a method for some operation.  The first three arguments of
  239.      this function coincide with the arguments for the corresponding method if
  240.      it were found, the fourth argument is the symbol corresponding to the
  241.      missing method.  If several methods are tried, the last one is used.
  242.      Say, 1-$a can be equivalent to
  243.  
  244.              &nomethodMethod($a,1,1,"-")
  245.  
  246.      if the pair "nomethod" => "nomethodMethod" was specified in the use
  247.      overload directive.
  248.  
  249.      If some operation cannot be resolved, and there is no function assigned
  250.      to "nomethod", then an exception will be raised via _d_i_e()-- unless
  251.      "fallback" was specified as a key in use overload directive.
  252.  
  253.      FFFFaaaallllllllbbbbaaaacccckkkk
  254.  
  255.      The key "fallback" governs what to do if a method for a particular
  256.      operation is not found.  Three different cases are possible depending on
  257.      the value of "fallback":
  258.  
  259.  
  260.  
  261.                                                                         PPPPaaaaggggeeee 4444
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268. oooovvvveeeerrrrllllooooaaaadddd((((3333))))                                                        oooovvvveeeerrrrllllooooaaaadddd((((3333))))
  269.  
  270.  
  271.  
  272.      +o undef         Perl tries to use a substituted method (see the section
  273.                      on _M_A_G_I_C _A_U_T_O_G_E_N_E_R_A_T_I_O_N).  If this fails, it then tries
  274.                      to calls "nomethod" value; if missing, an exception will
  275.                      be raised.
  276.  
  277.      +o TRUE          The same as for the undef value, but no exception is
  278.                      raised.  Instead, it silently reverts to what it would
  279.                      have done were there no use overload present.
  280.  
  281.      +o defined, but FALSE
  282.                      No autogeneration is tried.  Perl tries to call
  283.                      "nomethod" value, and if this is missing, raises an
  284.                      exception.
  285.  
  286.      NNNNooootttteeee.... "fallback" inheritance via @ISA is not carved in stone yet, see the
  287.      section on _I_n_h_e_r_i_t_a_n_c_e _a_n_d _o_v_e_r_l_o_a_d_i_n_g.
  288.  
  289.      CCCCooooppppyyyy CCCCoooonnnnssssttttrrrruuuuccccttttoooorrrr
  290.  
  291.      The value for "=" is a reference to a function with three arguments,
  292.      i.e., it looks like the other values in use overload. However, it does
  293.      not overload the Perl assignment operator. This would go against Camel
  294.      hair.
  295.  
  296.      This operation is called in the situations when a mutator is applied to a
  297.      reference that shares its object with some other reference, such as
  298.  
  299.              $a=$b;
  300.              $a++;
  301.  
  302.      To make this change $a and not change $b, a copy of $$a is made, and $a
  303.      is assigned a reference to this new object.  This operation is done
  304.      during execution of the $a++, and not during the assignment, (so before
  305.      the increment $$a coincides with $$b).  This is only done if ++ is
  306.      expressed via a method for '++' or '+='.  Note that if this operation is
  307.      expressed via '+' a nonmutator, i.e., as in
  308.  
  309.              $a=$b;
  310.              $a=$a+1;
  311.  
  312.      then $a does not reference a new copy of $$a, since $$a does not appear
  313.      as lvalue when the above code is executed.
  314.  
  315.      If the copy constructor is required during the execution of some mutator,
  316.      but a method for '=' was not specified, it can be autogenerated as a
  317.      string copy if the object is a plain scalar.
  318.  
  319.      EEEExxxxaaaammmmpppplllleeee
  320.           The actually executed code for
  321.  
  322.  
  323.  
  324.  
  325.  
  326.  
  327.                                                                         PPPPaaaaggggeeee 5555
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334. oooovvvveeeerrrrllllooooaaaadddd((((3333))))                                                        oooovvvveeeerrrrllllooooaaaadddd((((3333))))
  335.  
  336.  
  337.  
  338.                   $a=$b;
  339.                   Something else which does not modify $a or $b....
  340.                   ++$a;
  341.  
  342.           may be
  343.  
  344.                   $a=$b;
  345.                   Something else which does not modify $a or $b....
  346.                   $a = $a->clone(undef,"");
  347.                   $a->incr(undef,"");
  348.  
  349.           if $b was mathemagical, and '++' was overloaded with \&incr, '=' was
  350.           overloaded with \&clone.
  351.  
  352. MMMMAAAAGGGGIIIICCCC AAAAUUUUTTTTOOOOGGGGEEEENNNNEEEERRRRAAAATTTTIIIIOOOONNNN
  353.      If a method for an operation is not found, and the value for  "fallback"
  354.      is TRUE or undefined, Perl tries to autogenerate a substitute method for
  355.      the missing operation based on the defined operations.  Autogenerated
  356.      method substitutions are possible for the following operations:
  357.  
  358.      _A_s_s_i_g_n_m_e_n_t _f_o_r_m_s _o_f _a_r_i_t_h_m_e_t_i_c _o_p_e_r_a_t_i_o_n_s
  359.                      $a+=$b can use the method for "+" if the method for "+="
  360.                      is not defined.
  361.  
  362.      _C_o_n_v_e_r_s_i_o_n _o_p_e_r_a_t_i_o_n_s
  363.                      String, numeric, and boolean conversion are calculated in
  364.                      terms of one another if not all of them are defined.
  365.  
  366.      _I_n_c_r_e_m_e_n_t _a_n_d _d_e_c_r_e_m_e_n_t
  367.                      The ++$a operation can be expressed in terms of $a+=1 or
  368.                      $a+1, and $a-- in terms of $a-=1 and $a-1.
  369.  
  370.      abs($a)         can be expressed in terms of $a<0 and -$a (or 0-$a).
  371.  
  372.      _U_n_a_r_y _m_i_n_u_s     can be expressed in terms of subtraction.
  373.  
  374.      _N_e_g_a_t_i_o_n        ! and not can be expressed in terms of boolean
  375.                      conversion, or string or numerical conversion.
  376.  
  377.      _C_o_n_c_a_t_e_n_a_t_i_o_n   can be expressed in terms of string conversion.
  378.  
  379.      _C_o_m_p_a_r_i_s_o_n _o_p_e_r_a_t_i_o_n_s
  380.                      can be expressed in terms of its "spaceship" counterpart:
  381.                      either <=> or cmp:
  382.  
  383.                          <, >, <=, >=, ==, !=        in terms of <=>
  384.                          lt, gt, le, ge, eq, ne      in terms of cmp
  385.  
  386.  
  387.      _C_o_p_y _o_p_e_r_a_t_o_r   can be expressed in terms of an assignment to the
  388.                      dereferenced value, if this value is a scalar and not a
  389.                      reference.
  390.  
  391.  
  392.  
  393.                                                                         PPPPaaaaggggeeee 6666
  394.  
  395.  
  396.  
  397.  
  398.  
  399.  
  400. oooovvvveeeerrrrllllooooaaaadddd((((3333))))                                                        oooovvvveeeerrrrllllooooaaaadddd((((3333))))
  401.  
  402.  
  403.  
  404. WWWWAAAARRRRNNNNIIIINNNNGGGG
  405.      The restriction for the comparison operation is that even if, for
  406.      example, `cmp' should return a blessed reference, the autogenerated `lt'
  407.      function will produce only a standard logical value based on the
  408.      numerical value of the result of `cmp'.  In particular, a working numeric
  409.      conversion is needed in this case (possibly expressed in terms of other
  410.      conversions).
  411.  
  412.      Similarly, .=  and x= operators lose their mathemagical properties if the
  413.      string conversion substitution is applied.
  414.  
  415.      When you _c_h_o_p() a mathemagical object it is promoted to a string and its
  416.      mathemagical properties are lost.  The same can happen with other
  417.      operations as well.
  418.  
  419. RRRRuuuunnnn----ttttiiiimmmmeeee OOOOvvvveeeerrrrllllooooaaaaddddiiiinnnngggg
  420.      Since all use directives are executed at compile-time, the only way to
  421.      change overloading during run-time is to
  422.  
  423.          eval 'use overload "+" => \&addmethod';
  424.  
  425.      You can also use
  426.  
  427.          eval 'no overload "+", "--", "<="';
  428.  
  429.      though the use of these constructs during run-time is questionable.
  430.  
  431. PPPPuuuubbbblllliiiicccc ffffuuuunnnnccccttttiiiioooonnnnssss
  432.      Package overload.pm provides the following public functions:
  433.  
  434.      overload::StrVal(arg)
  435.           Gives string value of arg as in absence of stringify overloading.
  436.  
  437.      overload::Overloaded(arg)
  438.           Returns true if arg is subject to overloading of some operations.
  439.  
  440.      overload::Method(obj,op)
  441.           Returns undef or a reference to the method that implements op.
  442.  
  443. IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
  444.      What follows is subject to change RSN.
  445.  
  446.      The table of methods for all operations is cached in magic for the symbol
  447.      table hash for the package.  The cache is invalidated during processing
  448.      of use overload, no overload, new function definitions, and changes in
  449.      @ISA. However, this invalidation remains unprocessed until the next
  450.      blessing into the package. Hence if you want to change overloading
  451.      structure dynamically, you'll need an additional (fake) blessing to
  452.      update the table.
  453.  
  454.  
  455.  
  456.  
  457.  
  458.  
  459.                                                                         PPPPaaaaggggeeee 7777
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466. oooovvvveeeerrrrllllooooaaaadddd((((3333))))                                                        oooovvvveeeerrrrllllooooaaaadddd((((3333))))
  467.  
  468.  
  469.  
  470.      (Every SVish thing has a magic queue, and magic is an entry in that
  471.      queue.  This is how a single variable may participate in multiple forms
  472.      of magic simultaneously.  For instance, environment variables regularly
  473.      have two forms at once: their %ENV magic and their taint magic. However,
  474.      the magic which implements overloading is applied to the stashes, which
  475.      are rarely used directly, thus should not slow down Perl.)
  476.  
  477.      If an object belongs to a package using overload, it carries a special
  478.      flag.  Thus the only speed penalty during arithmetic operations without
  479.      overloading is the checking of this flag.
  480.  
  481.      In fact, if use overload is not present, there is almost no overhead for
  482.      overloadable operations, so most programs should not suffer measurable
  483.      performance penalties.  A considerable effort was made to minimize the
  484.      overhead when overload is used in some package, but the arguments in
  485.      question do not belong to packages using overload.  When in doubt, test
  486.      your speed with use overload and without it.  So far there have been no
  487.      reports of substantial speed degradation if Perl is compiled with
  488.      optimization turned on.
  489.  
  490.      There is no size penalty for data if overload is not used. The only size
  491.      penalty if overload is used in some package is that _a_l_l the packages
  492.      acquire a magic during the next blessing into the package. This magic is
  493.      three-words-long for packages without overloading, and carries the cache
  494.      tabel if the package is overloaded.
  495.  
  496.      Copying ($a=$b) is shallow; however, a one-level-deep copying is carried
  497.      out before any operation that can imply an assignment to the object $a
  498.      (or $b) refers to, like $a++.  You can override this behavior by defining
  499.      your own copy constructor (see the section on _C_o_p_y _C_o_n_s_t_r_u_c_t_o_r).
  500.  
  501.      It is expected that arguments to methods that are not explicitly supposed
  502.      to be changed are constant (but this is not enforced).
  503.  
  504. AAAAUUUUTTTTHHHHOOOORRRR
  505.      Ilya Zakharevich <_i_l_y_a@_m_a_t_h._m_p_s._o_h_i_o-_s_t_a_t_e._e_d_u>.
  506.  
  507. DDDDIIIIAAAAGGGGNNNNOOOOSSSSTTTTIIIICCCCSSSS
  508.      When Perl is run with the ----DDDDoooo switch or its equivalent, overloading
  509.      induces diagnostic messages.
  510.  
  511.      Using the m command of Perl debugger (see the _p_e_r_l_d_e_b_u_g manpage) one can
  512.      deduce which operations are overloaded (and which ancestor triggers this
  513.      overloading). Say, if eq is overloaded, then the method (eq is shown by
  514.      debugger. The method () corresponds to the fallback key (in fact a
  515.      presence of this method shows that this package has overloading enabled,
  516.      and it is what is used by the Overloaded function).
  517.  
  518. BBBBUUUUGGGGSSSS
  519.      Because it is used for overloading, the per-package hash %OVERLOAD now
  520.      has a special meaning in Perl. The symbol table is filled with names
  521.      looking like line-noise.
  522.  
  523.  
  524.  
  525.                                                                         PPPPaaaaggggeeee 8888
  526.  
  527.  
  528.  
  529.  
  530.  
  531.  
  532. oooovvvveeeerrrrllllooooaaaadddd((((3333))))                                                        oooovvvveeeerrrrllllooooaaaadddd((((3333))))
  533.  
  534.  
  535.  
  536.      For the purpose of inheritance every overloaded package behaves as if
  537.      fallback is present (possibly undefined). This may create interesting
  538.      effects if some package is not overloaded, but inherits from two
  539.      overloaded packages.
  540.  
  541.      This document is confusing.
  542.  
  543.  
  544.  
  545.  
  546.  
  547.  
  548.  
  549.  
  550.  
  551.  
  552.  
  553.  
  554.  
  555.  
  556.  
  557.  
  558.  
  559.  
  560.  
  561.  
  562.  
  563.  
  564.  
  565.  
  566.  
  567.  
  568.  
  569.  
  570.  
  571.  
  572.  
  573.  
  574.  
  575.  
  576.  
  577.  
  578.  
  579.  
  580.  
  581.  
  582.  
  583.  
  584.  
  585.  
  586.  
  587.  
  588.  
  589.  
  590.  
  591.                                                                         PPPPaaaaggggeeee 9999
  592.  
  593.  
  594.  
  595.  
  596.  
  597.  
  598. oooovvvveeeerrrrllllooooaaaadddd((((3333))))                                                        oooovvvveeeerrrrllllooooaaaadddd((((3333))))
  599.  
  600.  
  601.  
  602.  
  603.  
  604.  
  605.  
  606.  
  607.  
  608.  
  609.  
  610.  
  611.  
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618.  
  619.  
  620.  
  621.  
  622.  
  623.  
  624.  
  625.  
  626.  
  627.  
  628.  
  629.  
  630.  
  631.  
  632.  
  633.  
  634.  
  635.  
  636.  
  637.  
  638.  
  639.  
  640.  
  641.  
  642.  
  643.  
  644.  
  645.  
  646.  
  647.  
  648.  
  649.  
  650.  
  651.  
  652.  
  653.  
  654.                                                                        PPPPaaaaggggeeee 11110000
  655.  
  656.  
  657.  
  658.  
  659.  
  660.  
  661.